home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / sql.php < prev    next >
PHP Script  |  2005-03-06  |  38KB  |  905 lines

  1. <?php
  2. /* $Id: sql.php,v 2.46 2005/03/07 13:04:46 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. /**
  6.  * Gets some core libraries
  7.  */
  8. require_once('./libraries/grab_globals.lib.php');
  9. require_once('./libraries/common.lib.php');
  10. require_once('./libraries/tbl_indexes.lib.php');
  11.  
  12. /**
  13.  * Defines the url to return to in case of error in a sql statement
  14.  */
  15. // Security checkings
  16. if (!empty($goto)) {
  17.     $is_gotofile     = preg_replace('@^([^?]+).*$@s', '\\1', $goto);
  18.     if (!@file_exists('./' . $is_gotofile)) {
  19.         unset($goto);
  20.     } else {
  21.         $is_gotofile = ($is_gotofile == $goto);
  22.     }
  23. } // end if (security checkings)
  24.  
  25. if (empty($goto)) {
  26.     $goto         = (empty($table)) ? $cfg['DefaultTabDatabase'] : $cfg['DefaultTabTable'];
  27.     $is_gotofile  = TRUE;
  28. } // end if
  29. if (!isset($err_url)) {
  30.     $err_url = (!empty($back) ? $back : $goto)
  31.              . '?' . PMA_generate_common_url(isset($db) ? $db : '')
  32.              . ((strpos(' ' . $goto, 'db_details') != 1 && isset($table)) ? '&table=' . urlencode($table) : '');
  33. } // end if
  34.  
  35. // Coming from a bookmark dialog
  36. if (isset($fields['query'])) {
  37.     $sql_query = $fields['query'];
  38. }
  39.  
  40. // This one is just to fill $db
  41. if (isset($fields['dbase'])) {
  42.     $db = $fields['dbase'];
  43. }
  44.  
  45. // Now we can check the parameters
  46. PMA_checkParameters(array('sql_query', 'db'));
  47.  
  48. // instead of doing the test twice
  49. $is_drop_database = preg_match('@DROP[[:space:]]+DATABASE[[:space:]]+@i', $sql_query);
  50.  
  51. /**
  52.  * Check rights in case of DROP DATABASE
  53.  *
  54.  * This test may be bypassed if $is_js_confirmed = 1 (already checked with js)
  55.  * but since a malicious user may pass this variable by url/form, we don't take
  56.  * into account this case.
  57.  */
  58. if (!defined('PMA_CHK_DROP')
  59.     && !$cfg['AllowUserDropDatabase']
  60.     && $is_drop_database) {
  61.     // Checks if the user is a Superuser
  62.     // TODO: set a global variable with this information
  63.     // loic1: optimized query
  64.     if (!($result = PMA_DBI_select_db('mysql'))) {
  65.         require_once('./header.inc.php');
  66.         PMA_mysqlDie($strNoDropDatabases, '', '', $err_url);
  67.     } // end if
  68. } // end if
  69.  
  70.  
  71. /**
  72.  * Need to find the real end of rows?
  73.  */
  74.  
  75. if (isset($find_real_end) && $find_real_end) {
  76.     $unlim_num_rows = PMA_countRecords($db, $table, TRUE, TRUE);
  77.     $pos = @((ceil($unlim_num_rows / $session_max_rows) - 1) * $session_max_rows);
  78. }
  79.  
  80. /**
  81.  * Bookmark add
  82.  */
  83. if (isset($store_bkm)) {
  84.     require_once('./libraries/bookmark.lib.php');
  85.     PMA_addBookmarks($fields, $cfg['Bookmark'], (isset($bkm_all_users) && $bkm_all_users == 'true' ? true : false));
  86.     PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . $goto);
  87. } // end if
  88.  
  89.  
  90. /**
  91.  * Gets the true sql query
  92.  */
  93. // $sql_query has been urlencoded in the confirmation form for drop/delete
  94. // queries or in the navigation bar for browsing among records
  95. if (isset($btnDrop) || isset($navig)) {
  96.     $sql_query = urldecode($sql_query);
  97. }
  98.  
  99. /**
  100.  * Reformat the query
  101.  */
  102.  
  103. $GLOBALS['unparsed_sql'] = $sql_query;
  104. $parsed_sql = PMA_SQP_parse($sql_query);
  105. $analyzed_sql = PMA_SQP_analyze($parsed_sql);
  106. // Bug #641765 - Robbat2 - 12 January 2003, 10:49PM
  107. // Reverted - Robbat2 - 13 January 2003, 2:40PM
  108.  
  109. // lem9: for bug 780516: now that we use case insensitive preg_match
  110. // or flags from the analyser, do not put back the reformatted query
  111. // into $sql_query, to make this kind of query work without
  112. // capitalizing keywords:
  113. //
  114. // CREATE TABLE SG_Persons (
  115. //  id int(10) unsigned NOT NULL auto_increment,
  116. //  first varchar(64) NOT NULL default '',
  117. //  PRIMARY KEY  (`id`)
  118. // )
  119. //
  120. // Note: now we probably do not need to fill and use $GLOBALS['unparsed_sql']
  121. // but I let this intact for now.
  122. //
  123. //$sql_query = PMA_SQP_formatHtml($parsed_sql, 'query_only');
  124.  
  125.  
  126. // check for a real SELECT ... FROM
  127. $is_select = isset($analyzed_sql[0]['queryflags']['select_from']);
  128.  
  129. // If the query is a Select, extract the db and table names and modify
  130. // $db and $table, to have correct page headers, links and left frame.
  131. // db and table name may be enclosed with backquotes, db is optionnal,
  132. // query may contain aliases.
  133.  
  134. // (TODO: if there are more than one table name in the Select:
  135. // - do not extract the first table name
  136. // - do not show a table name in the page header
  137. // - do not display the sub-pages links)
  138.  
  139. if ($is_select) {
  140.     $prev_db = $db;
  141.     if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name'])) {
  142.         $table = $analyzed_sql[0]['table_ref'][0]['table_true_name'];
  143.     }
  144.     if (isset($analyzed_sql[0]['table_ref'][0]['db'])
  145.        && !empty($analyzed_sql[0]['table_ref'][0]['db'])) {
  146.         $db    = $analyzed_sql[0]['table_ref'][0]['db'];
  147.     }
  148.     else {
  149.         $db = $prev_db;
  150.     }
  151.     // Nijel don't change reload, if we already decided to reload in read_dump
  152.     if (!isset($reload) || $reload == 0) {
  153.         $reload  = ($db == $prev_db) ? 0 : 1;
  154.     }
  155. }
  156.  
  157. /**
  158.  * Sets or modifies the $goto variable if required
  159.  */
  160. if ($goto == 'sql.php') {
  161.     $is_gotofile = FALSE;
  162.     $goto = 'sql.php?'
  163.           . PMA_generate_common_url($db, $table)
  164.           . '&pos=' . $pos
  165.           . '&sql_query=' . urlencode($sql_query);
  166. } // end if
  167.  
  168.  
  169. /**
  170.  * Go back to further page if table should not be dropped
  171.  */
  172. if (isset($btnDrop) && $btnDrop == $strNo) {
  173.     if (!empty($back)) {
  174.         $goto = $back;
  175.     }
  176.     if ($is_gotofile) {
  177.         if (strpos(' ' . $goto, 'db_details') == 1 && !empty($table)) {
  178.             unset($table);
  179.         }
  180.         $active_page = $goto;
  181.         require('./' . PMA_securePath($goto));
  182.     } else {
  183.         PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . str_replace('&', '&', $goto));
  184.     }
  185.     exit();
  186. } // end if
  187.  
  188.  
  189. /**
  190.  * Displays the confirm page if required
  191.  *
  192.  * This part of the script is bypassed if $is_js_confirmed = 1 (already checked
  193.  * with js) because possible security issue is not so important here: at most,
  194.  * the confirm message isn't displayed.
  195.  *
  196.  * Also bypassed if only showing php code.or validating a SQL query
  197.  */
  198. if (!$cfg['Confirm']
  199.     || (isset($is_js_confirmed) && $is_js_confirmed)
  200.     || isset($btnDrop)
  201.  
  202.     // if we are coming from a "Create PHP code" or a "Without PHP Code"
  203.     // dialog, we won't execute the query anyway, so don't confirm
  204.     //|| !empty($GLOBALS['show_as_php'])
  205.     || isset($GLOBALS['show_as_php'])
  206.  
  207.     || !empty($GLOBALS['validatequery'])) {
  208.     $do_confirm = FALSE;
  209. } else {
  210.     $do_confirm = isset($analyzed_sql[0]['queryflags']['need_confirm']);
  211. }
  212.  
  213. if ($do_confirm) {
  214.     $stripped_sql_query = $sql_query;
  215.     require_once('./header.inc.php');
  216.     echo '<table border="0" cellpadding="3" cellspacing="0">' . "\n";
  217.     if ($is_drop_database) {
  218.         echo '    <tr>' . "\n"
  219.            . '        <td class="tblHeadError">' . "\n";
  220.         if($cfg['ErrorIconic']){
  221.             echo '        <img src="' .$pmaThemeImage .'s_warn.png" border="0" hspace="2" vspace="2" align="left" />';
  222.         }
  223.         echo $strDropDatabaseStrongWarning . ' <br />' . "\n";
  224.     } else {
  225.         echo '    <tr>' . "\n"
  226.            . '        <td class="tblHeadError">' . "\n";
  227.         if($cfg['ErrorIconic']){
  228.             echo '        <img src="' .$pmaThemeImage .'s_really.png" border="0" hspace="2" align="middle" />';
  229.         }
  230.     }
  231.     echo $strDoYouReally . "\n"
  232.        . '        </td>' . "\n"
  233.        . '    </tr>' . "\n"
  234.        . '    <tr>' . "\n"
  235.        . '        <td class="tblError">' . "\n"
  236.        . '            <tt>' . htmlspecialchars($stripped_sql_query) . '</tt> ?<br/>' . "\n"
  237.        . '        </td>' . "\n"
  238.        . '    </tr>' . "\n"
  239.        . '    <form action="sql.php" method="post">' . "\n"
  240.        . '    <tr>' . "\n"
  241.        . '        <td align="right">' . "\n"
  242.     ?>
  243.     <?php echo PMA_generate_common_hidden_inputs($db, (isset($table)?$table:'')); ?>
  244.     <input type="hidden" name="sql_query" value="<?php echo urlencode($sql_query); ?>" />
  245.     <input type="hidden" name="zero_rows" value="<?php echo isset($zero_rows) ? PMA_sanitize($zero_rows) : ''; ?>" />
  246.     <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
  247.     <input type="hidden" name="back" value="<?php echo isset($back) ? PMA_sanitize($back) : ''; ?>" />
  248.     <input type="hidden" name="reload" value="<?php echo isset($reload) ? PMA_sanitize($reload) : 0; ?>" />
  249.     <input type="hidden" name="purge" value="<?php echo isset($purge) ? PMA_sanitize($purge) : ''; ?>" />
  250.     <input type="hidden" name="cpurge" value="<?php echo isset($cpurge) ? PMA_sanitize($cpurge) : ''; ?>" />
  251.     <input type="hidden" name="purgekey" value="<?php echo isset($purgekey) ? PMA_sanitize($purgekey) : ''; ?>" />
  252.     <input type="hidden" name="show_query" value="<?php echo isset($show_query) ? PMA_sanitize($show_query) : ''; ?>" />
  253.     <input type="submit" name="btnDrop" value="<?php echo $strYes; ?>" id="buttonYes" />
  254.     <input type="submit" name="btnDrop" value="<?php echo $strNo; ?>" id="buttonNo" />
  255.     <?php
  256.     echo '        </td>' . "\n"
  257.        . '    </tr>' . "\n"
  258.        . '    </form>' . "\n"
  259.        . '</table>';
  260.     echo "\n";
  261. } // end if
  262.  
  263.  
  264. /**
  265.  * Executes the query and displays results
  266.  */
  267. else {
  268.     if (!isset($sql_query)) {
  269.         $sql_query = '';
  270.     }
  271.     // Defines some variables
  272.     // loic1: A table has to be created -> left frame should be reloaded
  273.     if ((!isset($reload) || $reload == 0)
  274.         && preg_match('@^CREATE TABLE[[:space:]]+(.*)@i', $sql_query)) {
  275.         $reload           = 1;
  276.     }
  277.     // Gets the number of rows per page
  278.     if (empty($session_max_rows)) {
  279.         $session_max_rows = $cfg['MaxRows'];
  280.     } else if ($session_max_rows != 'all') {
  281.         $cfg['MaxRows']   = $session_max_rows;
  282.     }
  283.     // Defines the display mode (horizontal/vertical) and header "frequency"
  284.     if (empty($disp_direction)) {
  285.         $disp_direction   = $cfg['DefaultDisplay'];
  286.     }
  287.     if (empty($repeat_cells)) {
  288.         $repeat_cells     = $cfg['RepeatCells'];
  289.     }
  290.  
  291.     // SK -- Patch: $is_group added for use in calculation of total number of
  292.     //              rows.
  293.     //              $is_count is changed for more correct "LIMIT" clause
  294.     //              appending in queries like
  295.     //                "SELECT COUNT(...) FROM ... GROUP BY ..."
  296.  
  297.     // TODO: detect all this with the parser, to avoid problems finding
  298.     // those strings in comments or backquoted identifiers
  299.  
  300.     $is_explain = $is_count = $is_export = $is_delete = $is_insert = $is_affected = $is_show = $is_maint = $is_analyse = $is_group = $is_func = FALSE;
  301.     if ($is_select) { // see line 141
  302.         $is_group = preg_match('@(GROUP[[:space:]]+BY|HAVING|SELECT[[:space:]]+DISTINCT)[[:space:]]+@i', $sql_query);
  303.         $is_func =  !$is_group && (preg_match('@[[:space:]]+(SUM|AVG|STD|STDDEV|MIN|MAX|BIT_OR|BIT_AND)\s*\(@i', $sql_query));
  304.         $is_count = !$is_group && (preg_match('@^SELECT[[:space:]]+COUNT\((.*\.+)?.*\)@i', $sql_query));
  305.         $is_export   = (preg_match('@[[:space:]]+INTO[[:space:]]+OUTFILE[[:space:]]+@i', $sql_query));
  306.         $is_analyse  = (preg_match('@[[:space:]]+PROCEDURE[[:space:]]+ANALYSE@i', $sql_query));
  307.     } else if (preg_match('@^EXPLAIN[[:space:]]+@i', $sql_query)) {
  308.         $is_explain  = TRUE;
  309.     } else if (preg_match('@^DELETE[[:space:]]+@i', $sql_query)) {
  310.         $is_delete   = TRUE;
  311.         $is_affected = TRUE;
  312.     } else if (preg_match('@^(INSERT|LOAD[[:space:]]+DATA|REPLACE)[[:space:]]+@i', $sql_query)) {
  313.         $is_insert   = TRUE;
  314.         $is_affected = TRUE;
  315.     } else if (preg_match('@^UPDATE[[:space:]]+@i', $sql_query)) {
  316.         $is_affected = TRUE;
  317.     } else if (preg_match('@^SHOW[[:space:]]+@i', $sql_query)) {
  318.         $is_show     = TRUE;
  319.     } else if (preg_match('@^(CHECK|ANALYZE|REPAIR|OPTIMIZE)[[:space:]]+TABLE[[:space:]]+@i', $sql_query)) {
  320.         $is_maint    = TRUE;
  321.     }
  322.  
  323.     // Do append a "LIMIT" clause?
  324.     if (isset($pos)
  325.         && (!$cfg['ShowAll'] || $session_max_rows != 'all')
  326.         && !($is_count || $is_export || $is_func || $is_analyse)
  327.         && isset($analyzed_sql[0]['queryflags']['select_from'])
  328.         && !isset($analyzed_sql[0]['queryflags']['offset'])
  329.         && !preg_match('@[[:space:]]LIMIT[[:space:]0-9,-]+$@i', $sql_query)) {
  330.         $sql_limit_to_append = " LIMIT $pos, ".$cfg['MaxRows'];
  331.         if (preg_match('@(.*)([[:space:]](PROCEDURE[[:space:]](.*)|FOR[[:space:]]+UPDATE|LOCK[[:space:]]+IN[[:space:]]+SHARE[[:space:]]+MODE))$@i', $sql_query, $regs)) {
  332.             $full_sql_query  = $regs[1] . $sql_limit_to_append . $regs[2];
  333.         } else {
  334.             $full_sql_query  = $sql_query . $sql_limit_to_append;
  335.         }
  336.  
  337.         if (isset($display_query)) {
  338.             if (preg_match('@((.|\n)*)(([[:space:]](PROCEDURE[[:space:]](.*)|FOR[[:space:]]+UPDATE|LOCK[[:space:]]+IN[[:space:]]+SHARE[[:space:]]+MODE))|;)[[:space:]]*$@i', $display_query, $regs)) {
  339.                 $display_query  = $regs[1] . $sql_limit_to_append . $regs[3];
  340.             } else {
  341.                 $display_query  = $display_query . $sql_limit_to_append;
  342.             }
  343.         }
  344.     } else {
  345.         $full_sql_query      = $sql_query;
  346.     } // end if...else
  347.  
  348.     PMA_DBI_select_db($db);
  349.  
  350.     // If the query is a DELETE query with no WHERE clause, get the number of
  351.     // rows that will be deleted (mysql_affected_rows will always return 0 in
  352.     // this case)
  353.  
  354.     if ($is_delete
  355.         && preg_match('@^DELETE([[:space:]].+)?(FROM[[:space:]](.+))$@i', $sql_query, $parts)
  356.         && !preg_match('@[[:space:]]WHERE[[:space:]]@i', $parts[3])) {
  357.         $cnt_all_result = @PMA_DBI_try_query('SELECT COUNT(*) as count ' .  $parts[2]);
  358.         if ($cnt_all_result) {
  359.             list($num_rows) = PMA_DBI_fetch_row($cnt_all_result);
  360.             PMA_DBI_free_result($cnt_all_result);
  361.         } else {
  362.             $num_rows   = 0;
  363.         }
  364.     }
  365.  
  366.     //  E x e c u t e    t h e    q u e r y
  367.  
  368.     // Only if we didn't ask to see the php code (mikebeck)
  369.     if (isset($GLOBALS['show_as_php']) || !empty($GLOBALS['validatequery'])) {
  370.         unset($result);
  371.         $num_rows = 0;
  372.     }
  373.     else {
  374.         // garvin: Measure query time. TODO-Item http://sourceforge.net/tracker/index.php?func=detail&aid=571934&group_id=23067&atid=377411
  375.         list($usec, $sec) = explode(' ',microtime());
  376.         $querytime_before = ((float)$usec + (float)$sec);
  377.  
  378.         $result   = @PMA_DBI_try_query($full_sql_query, NULL, PMA_DBI_QUERY_STORE);
  379.  
  380.         list($usec, $sec) = explode(' ',microtime());
  381.         $querytime_after = ((float)$usec + (float)$sec);
  382.  
  383.         $GLOBALS['querytime'] = $querytime_after - $querytime_before;
  384.  
  385.         // Displays an error message if required and stop parsing the script
  386.         if ($error        = PMA_DBI_getError()) {
  387.             require_once('./header.inc.php');
  388.             $full_err_url = (preg_match('@^(db_details|tbl_properties)@', $err_url))
  389.                           ? $err_url . '&show_query=1&sql_query=' . urlencode($sql_query)
  390.                           : $err_url;
  391.             PMA_mysqlDie($error, $full_sql_query, '', $full_err_url);
  392.         }
  393.         unset($error);
  394.  
  395.         // Gets the number of rows affected/returned
  396.         // (This must be done immediately after the query because
  397.         // mysql_affected_rows() reports about the last query done)
  398.  
  399.         if (!$is_affected) {
  400.             $num_rows = ($result) ? @PMA_DBI_num_rows($result) : 0;
  401.         } else if (!isset($num_rows)) {
  402.             $num_rows = @PMA_DBI_affected_rows();
  403.         }
  404.  
  405.         // Checks if the current database has changed
  406.         // This could happen if the user sends a query like "USE `database`;"
  407.         $res = PMA_DBI_query('SELECT DATABASE() AS \'db\';');
  408.         $row = PMA_DBI_fetch_row($res);
  409.         if (is_array($row) && isset($row[0]) && (strcasecmp($db,$row[0]) != 0)) {
  410.             $db     = $row[0];
  411.             $reload = 1;
  412.         }
  413.         @PMA_DBI_free_result($res);
  414.         unset($res, $row);
  415.  
  416.         // tmpfile remove after convert encoding appended by Y.Kawada
  417.         if (function_exists('PMA_kanji_file_conv')
  418.             && (isset($textfile) && file_exists($textfile))) {
  419.             unlink($textfile);
  420.         }
  421.  
  422.         // Counts the total number of rows for the same 'SELECT' query without the
  423.         // 'LIMIT' clause that may have been programatically added
  424.  
  425.         if (empty($sql_limit_to_append)) {
  426.             $unlim_num_rows         = $num_rows;
  427.             // if we did not append a limit, set this to get a correct
  428.             // "Showing rows..." message
  429.             $GLOBALS['session_max_rows'] = 'all';
  430.         }
  431.         else if ($is_select) {
  432.  
  433.                 //    c o u n t    q u e r y
  434.  
  435.                 // If we are "just browsing", there is only one table,
  436.                 // and no where clause (or just 'WHERE 1 '),
  437.                 // so we do a quick count (which uses MaxExactCount)
  438.                 // because SQL_CALC_FOUND_ROWS
  439.                 // is not quick on large InnoDB tables
  440.  
  441.                 // but do not count again if we did it previously
  442.                 // due to $find_real_end == TRUE
  443.  
  444.                 if (!$is_group
  445.                  && !isset($analyzed_sql[0]['queryflags']['union'])
  446.                  && !isset($analyzed_sql[0]['table_ref'][1]['table_name'])
  447.                  && (empty($analyzed_sql[0]['where_clause'])
  448.                    || $analyzed_sql[0]['where_clause'] == '1 ')
  449.                  && !isset($find_real_end)
  450.                  ) {
  451.  
  452.                     // "j u s t   b r o w s i n g"
  453.                     $unlim_num_rows = PMA_countRecords($db, $table, TRUE);
  454.  
  455.                 } else { // n o t   " j u s t   b r o w s i n g "
  456.  
  457.                     if (PMA_MYSQL_INT_VERSION < 40000) {
  458.  
  459.                         // detect this case:
  460.                         // SELECT DISTINCT x AS foo, y AS bar FROM sometable
  461.  
  462.                         if (isset($analyzed_sql[0]['queryflags']['distinct'])) {
  463.                             $count_what = 'DISTINCT ';
  464.                             $first_expr = TRUE;
  465.                             foreach($analyzed_sql[0]['select_expr'] as $part) {
  466.                                 $count_what .= (!$first_expr ? ', ' : '') . $part['expr'];
  467.                                 $first_expr = FALSE;
  468.                             }
  469.                          } else {
  470.                              $count_what = '*';
  471.                          }
  472.                         $count_query = 'SELECT COUNT(' . $count_what . ') AS count';
  473.                     }
  474.  
  475.                     // add the remaining of select expression if there is
  476.                     // a GROUP BY or HAVING clause
  477.                     if (PMA_MYSQL_INT_VERSION < 40000
  478.                      && $count_what =='*'
  479.                      && (!empty($analyzed_sql[0]['group_by_clause'])
  480.                         || !empty($analyzed_sql[0]['having_clause']))) {
  481.                         $count_query .= ' ,' . $analyzed_sql[0]['select_expr_clause'];
  482.                     }
  483.  
  484.                     if (PMA_MYSQL_INT_VERSION >= 40000) {
  485.                          // add select expression after the SQL_CALC_FOUND_ROWS
  486.  
  487.                             // for UNION, just adding SQL_CALC_FOUND_ROWS
  488.                             // after the first SELECT works.
  489.  
  490.                             // take the left part, could be:
  491.                             // SELECT
  492.                             // (SELECT
  493.                             $count_query = PMA_SQP_formatHtml($parsed_sql, 'query_only', 0, $analyzed_sql[0]['position_of_first_select'] + 1);
  494.                             $count_query .= ' SQL_CALC_FOUND_ROWS ';
  495.                             // add everything that was after the first SELECT
  496.                             $count_query .= PMA_SQP_formatHtml($parsed_sql, 'query_only', $analyzed_sql[0]['position_of_first_select']+1);
  497.                     } else { // PMA_MYSQL_INT_VERSION < 40000
  498.  
  499.                         if (!empty($analyzed_sql[0]['from_clause'])) {
  500.                             $count_query .= ' FROM ' . $analyzed_sql[0]['from_clause'];
  501.                         }
  502.                         if (!empty($analyzed_sql[0]['where_clause'])) {
  503.                             $count_query .= ' WHERE ' . $analyzed_sql[0]['where_clause'];
  504.                         }
  505.                         if (!empty($analyzed_sql[0]['group_by_clause'])) {
  506.                             $count_query .= ' GROUP BY ' . $analyzed_sql[0]['group_by_clause'];
  507.                         }
  508.                         if (!empty($analyzed_sql[0]['having_clause'])) {
  509.                             $count_query .= ' HAVING ' . $analyzed_sql[0]['having_clause'];
  510.                         }
  511.                     } // end if
  512.  
  513.                     // if using SQL_CALC_FOUND_ROWS, add a LIMIT to avoid
  514.                     // long delays. Returned count will be complete anyway.
  515.                     // (but a LIMIT would disrupt results in an UNION)
  516.  
  517.                     if (PMA_MYSQL_INT_VERSION >= 40000
  518.                     && !isset($analyzed_sql[0]['queryflags']['union'])) {
  519.                         $count_query .= ' LIMIT 1';
  520.                     }
  521.  
  522.                     // run the count query
  523.  
  524.                     if (PMA_MYSQL_INT_VERSION < 40000) {
  525.                         if ($cnt_all_result = PMA_DBI_try_query($count_query)) {
  526.                             if ($is_group && $count_what == '*') {
  527.                                 $unlim_num_rows = @PMA_DBI_num_rows($cnt_all_result);
  528.                             } else {
  529.                                 $unlim_num_rows = PMA_DBI_fetch_assoc($cnt_all_result);
  530.                                 $unlim_num_rows = $unlim_num_rows['count'];
  531.                             }
  532.                             PMA_DBI_free_result($cnt_all_result);
  533.                         } else {
  534.                             if (PMA_DBI_getError()) {
  535.  
  536.                                 // there are some cases where the generated
  537.                                 // count_query (for MySQL 3) is wrong,
  538.                                 // so we get here.
  539.                                 //TODO: use a big unlimited query to get
  540.                                 // the correct number of rows (depending
  541.                                 // on a config variable?)
  542.                                 $unlim_num_rows = 0;
  543.                             }
  544.                         }
  545.                     } else {
  546.                         PMA_DBI_try_query($count_query);
  547.                         // if (mysql_error()) {
  548.                         // void.
  549.                         // I tried the case
  550.                         // (SELECT `User`, `Host`, `Db`, `Select_priv` FROM `db`)
  551.                         // UNION (SELECT `User`, `Host`, "%" AS "Db",
  552.                         // `Select_priv`
  553.                         // FROM `user`) ORDER BY `User`, `Host`, `Db`;
  554.                         // and although the generated count_query is wrong
  555.                         // the SELECT FOUND_ROWS() work! (maybe it gets the
  556.                         // count from the latest query that worked)
  557.                         //
  558.                         // another case where the count_query is wrong:
  559.                         // SELECT COUNT( * ), f1 from t1 group by f1
  560.                         // and you click to sort on count( * )
  561.                         // }
  562.                         $cnt_all_result       = PMA_DBI_query('SELECT FOUND_ROWS() as count;');
  563.                         list($unlim_num_rows) = PMA_DBI_fetch_row($cnt_all_result);
  564.                         @PMA_DBI_free_result($cnt_all_result);
  565.                     }
  566.             } // end else "just browsing"
  567.  
  568.         } else { // not $is_select
  569.              $unlim_num_rows         = 0;
  570.         } // end rows total count
  571.  
  572.         // garvin: if a table or database gets dropped, check column comments.
  573.         if (isset($purge) && $purge == '1') {
  574.             require_once('./libraries/relation_cleanup.lib.php');
  575.  
  576.             if (isset($table) && isset($db) && !empty($table) && !empty($db)) {
  577.                 PMA_relationsCleanupTable($db, $table);
  578.             } elseif (isset($db) && !empty($db)) {
  579.                 PMA_relationsCleanupDatabase($db);
  580.             } else {
  581.                 // garvin: VOID. No DB/Table gets deleted.
  582.             } // end if relation-stuff
  583.          } // end if ($purge)
  584.  
  585.         // garvin: If a column gets dropped, do relation magic.
  586.         if (isset($cpurge) && $cpurge == '1' && isset($purgekey)
  587.             && isset($db) && isset($table)
  588.             && !empty($db) && !empty($table) && !empty($purgekey)) {
  589.             require_once('./libraries/relation_cleanup.lib.php');
  590.             PMA_relationsCleanupColumn($db, $table, $purgekey);
  591.  
  592.         } // end if column PMA_* purge
  593.     } // end else "didn't ask to see php code"
  594.  
  595.  
  596.     // No rows returned -> move back to the calling page
  597.     if ($num_rows < 1 || $is_affected) {
  598.         if ($is_delete) {
  599.             $message = $strDeletedRows . ' ' . $num_rows;
  600.         } else if ($is_insert) {
  601.             $message = $strInsertedRows . ' ' . $num_rows;
  602.             $insert_id = PMA_DBI_insert_id();
  603.             if ($insert_id != 0) {
  604.                 // insert_id is id of FIRST record inserted in one insert, so if we inserted multiple rows, we had to increment this
  605.                 $message .= '[br]'.$strInsertedRowId . ' ' . ($insert_id + $num_rows - 1);
  606.             }
  607.         } else if ($is_affected) {
  608.             $message = $strAffectedRows . ' ' . $num_rows;
  609.         } else if (!empty($zero_rows)) {
  610.             $message = $zero_rows;
  611.         } else if (!empty($GLOBALS['show_as_php'])) {
  612.             $message = $strPhp;
  613.         } else if (!empty($GLOBALS['validatequery'])) {
  614.             $message = $strValidateSQL;
  615.         } else {
  616.             $message = $strEmptyResultSet;
  617.         }
  618.  
  619.         $message .= ' ' . (isset($GLOBALS['querytime']) ? '(' . sprintf($strQueryTime, $GLOBALS['querytime']) . ')' : '');
  620.  
  621.         if ($is_gotofile) {
  622.             $goto = PMA_securePath($goto);
  623.             // Checks for a valid target script
  624.             if (isset($table) && $table == '') {
  625.                 unset($table);
  626.             }
  627.             if (isset($db) && $db == '') {
  628.                 unset($db);
  629.             }
  630.             $is_db = $is_table = FALSE;
  631.             if (strpos(' ' . $goto, 'tbl_properties') == 1) {
  632.                 if (!isset($table)) {
  633.                     $goto     = 'db_details.php';
  634.                 } else {
  635.                     $is_table = @PMA_DBI_query('SHOW TABLES LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\';', NULL, PMA_DBI_QUERY_STORE);
  636.                     if (!($is_table && @PMA_DBI_num_rows($is_table))) {
  637.                         $goto = 'db_details.php';
  638.                         unset($table);
  639.                     }
  640.                     @PMA_DBI_free_result($is_table);
  641.                 } // end if... else...
  642.             }
  643.             if (strpos(' ' . $goto, 'db_details') == 1) {
  644.                 if (isset($table)) {
  645.                     unset($table);
  646.                 }
  647.                 if (!isset($db)) {
  648.                     $goto     = 'main.php';
  649.                 } else {
  650.                     $is_db    = @PMA_DBI_select_db($db);
  651.                     if (!$is_db) {
  652.                         $goto = 'main.php';
  653.                         unset($db);
  654.                     }
  655.                 } // end if... else...
  656.             }
  657.             // Loads to target script
  658.             if (strpos(' ' . $goto, 'db_details') == 1
  659.                 || strpos(' ' . $goto, 'tbl_properties') == 1) {
  660.                 $js_to_run = 'functions.js';
  661.             }
  662.             if ($goto != 'main.php') {
  663.                 require_once('./header.inc.php');
  664.             }
  665.             $active_page = $goto;
  666.             require('./' . $goto);
  667.         } // end if file_exist
  668.         else {
  669.             PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . str_replace('&', '&', $goto) . '&message=' . urlencode($message));
  670.         } // end else
  671.         exit();
  672.     } // end no rows returned
  673.  
  674.     // At least one row is returned -> displays a table with results
  675.     else {
  676.         // Displays the headers
  677.         if (isset($show_query)) {
  678.             unset($show_query);
  679.         }
  680.         if (isset($printview) && $printview == '1') {
  681.             require_once('./header_printview.inc.php');
  682.         } else {
  683.             $js_to_run = 'functions.js';
  684.             unset($message);
  685.             if (!empty($table)) {
  686.                 require('./tbl_properties_common.php');
  687.                 $url_query .= '&goto=tbl_properties.php&back=tbl_properties.php';
  688.                 require('./tbl_properties_table_info.php');
  689.                 require('./tbl_properties_links.php');
  690.             }
  691.             else {
  692.                 require('./db_details_common.php');
  693.                 require('./db_details_db_info.php');
  694.             }
  695.         }
  696.  
  697.         require_once('./libraries/relation.lib.php');
  698.         $cfgRelation = PMA_getRelationsParam();
  699.  
  700.         // Gets the list of fields properties
  701.         if (isset($result) && $result) {
  702.             $fields_meta = PMA_DBI_get_fields_meta($result);
  703.             $fields_cnt  = count($fields_meta);
  704.         }
  705.  
  706.         // Display previous update query (from tbl_replace)
  707.         if (isset($disp_query) && $cfg['ShowSQL'] == TRUE) {
  708.             $tmp_sql_query = $GLOBALS['sql_query'];
  709.             $GLOBALS['sql_query'] = $disp_query;
  710.             PMA_showMessage($disp_message);
  711.             $GLOBALS['sql_query'] = $tmp_sql_query;
  712.         }
  713.  
  714.         // Displays the results in a table
  715.         require_once('./libraries/display_tbl.lib.php');
  716.         if (empty($disp_mode)) {
  717.             // see the "PMA_setDisplayMode()" function in
  718.             // libraries/display_tbl.lib.php
  719.             $disp_mode = 'urdr111101';
  720.         }
  721.         if (!isset($dontlimitchars)) {
  722.             $dontlimitchars = 0;
  723.         }
  724.  
  725.         PMA_displayTable($result, $disp_mode, $analyzed_sql);
  726.         PMA_DBI_free_result($result);
  727.  
  728.         // BEGIN INDEX CHECK See if indexes should be checked.
  729.         if (isset($query_type) && $query_type == 'check_tbl' && isset($selected) && is_array($selected)) {
  730.             foreach($selected AS $idx => $tbl_name) {
  731.                 $indexes        = $indexes_info = $indexes_data = array();
  732.                 $tbl_ret_keys   = PMA_get_indexes(urldecode($tbl_name), $err_url_0);
  733.  
  734.                 PMA_extract_indexes($tbl_ret_keys, $indexes, $indexes_info, $indexes_data);
  735.  
  736.                 $idx_collection = PMA_show_indexes(urldecode($tbl_name), $indexes, $indexes_info, $indexes_data, false);
  737.                 $check          = PMA_check_indexes($idx_collection);
  738.                 if (!empty($check)) {
  739.                 ?>
  740. <table border="0" cellpadding="2" cellspacing="0">
  741.     <tr>
  742.         <td class="tblHeaders" colspan="7"><?php printf($strIndexWarningTable, urldecode($tbl_name)); ?></td>
  743.     </tr>
  744.     <?php echo $check; ?>
  745. </table>
  746.                 <?php
  747.                 }
  748.             }
  749.         } // End INDEX CHECK
  750.  
  751.         if ($disp_mode[6] == '1' || $disp_mode[9] == '1') {
  752.             echo "\n";
  753.             echo '<hr />' . "\n";
  754.  
  755.             // Displays "Insert a new row" link if required
  756.             if ($disp_mode[6] == '1') {
  757.                 $lnk_goto  = 'sql.php?'
  758.                            . PMA_generate_common_url($db, $table)
  759.                            . '&pos=' . $pos
  760.                            . '&session_max_rows=' . $session_max_rows
  761.                            . '&disp_direction=' . $disp_direction
  762.                            . '&repeat_cells=' . $repeat_cells
  763.                            . '&dontlimitchars=' . $dontlimitchars
  764.                            . '&sql_query=' . urlencode($sql_query);
  765.                 $url_query = '?'
  766.                            . PMA_generate_common_url($db, $table)
  767.                            . '&pos=' . $pos
  768.                            . '&session_max_rows=' . $session_max_rows
  769.                            . '&disp_direction=' . $disp_direction
  770.                            . '&repeat_cells=' . $repeat_cells
  771.                            . '&dontlimitchars=' . $dontlimitchars
  772.                            . '&sql_query=' . urlencode($sql_query)
  773.                            . '&goto=' . urlencode($lnk_goto);
  774.  
  775.                 echo '    <!-- Insert a new row -->' . "\n"
  776.                    . '    <a href="tbl_change.php' . $url_query . '">' . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_insrow.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strInsertNewRow . '"/>' : '') . $strInsertNewRow . '</a>';
  777.                 if ($disp_mode[9] == '1') {
  778.                     echo '  ';
  779.                 }
  780.                 echo "\n";
  781.             } // end insert new row
  782.  
  783.             // Displays "printable view" link if required
  784.             if ($disp_mode[9] == '1') {
  785.                 $url_query = '?'
  786.                            . PMA_generate_common_url($db, $table)
  787.                            . '&pos=' . $pos
  788.                            . '&session_max_rows=' . $session_max_rows
  789.                            . '&disp_direction=' . $disp_direction
  790.                            . '&repeat_cells=' . $repeat_cells
  791.                            . '&printview=1'
  792.                            . '&sql_query=' . urlencode($sql_query);
  793.                 echo '    <!-- Print view -->' . "\n"
  794.                    . '    <a href="sql.php' . $url_query
  795.                    . ((isset($dontlimitchars) && $dontlimitchars == '1') ? '&dontlimitchars=1' : '')
  796.                    . '" target="print_view">'
  797.                    . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_print.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strPrintView . '"/>' : '')
  798.                    . $strPrintView . '</a>' . "\n";
  799.                 if (!$dontlimitchars) {
  800.                    echo   '      ' . "\n"
  801.                         . '    <a href="sql.php' . $url_query
  802.                         . '&dontlimitchars=1'
  803.                         . '" target="print_view">'
  804.                         . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_print.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strPrintViewFull . '" />' : '')
  805.                         . $strPrintViewFull . '</a>  ' . "\n";
  806.                 }
  807.             } // end displays "printable view"
  808.  
  809.             echo "\n";
  810.         }
  811.  
  812.         // Export link
  813.         // (the url_query has extra parameters that won't be used to export)
  814.         // (the single_table parameter is used in display_export.lib.php
  815.         //  to hide the SQL and the structure export dialogs)
  816.         if (isset($analyzed_sql[0]) && $analyzed_sql[0]['querytype'] == 'SELECT' && !isset($printview)) {
  817.             if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name']) && !isset($analyzed_sql[0]['table_ref'][1]['table_true_name'])) {
  818.                 $single_table   = '&single_table=true';
  819.             } else {
  820.                 $single_table   = '';
  821.             }
  822.             echo '    <!-- Export -->' . "\n"
  823.                    . '      <a href="tbl_properties_export.php' . $url_query
  824.                    . '&unlim_num_rows=' . $unlim_num_rows
  825.                    . $single_table
  826.                    . '">'
  827.                    . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_tblexport.png" border="0" height="16" width="16" align="middle" hspace="2" alt="' . $strExport . '" />' : '')
  828.                    . $strExport . '</a>' . "\n";
  829.         }
  830.  
  831.         // Bookmark Support if required
  832.         if ($disp_mode[7] == '1'
  833.             && ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table'] && empty($id_bookmark))
  834.             && !empty($sql_query)) {
  835.             echo "\n";
  836.  
  837.             $goto = 'sql.php?'
  838.                   . PMA_generate_common_url($db, $table)
  839.                   . '&pos=' . $pos
  840.                   . '&session_max_rows=' . $session_max_rows
  841.                   . '&disp_direction=' . $disp_direction
  842.                   . '&repeat_cells=' . $repeat_cells
  843.                   . '&dontlimitchars=' . $dontlimitchars
  844.                   . '&sql_query=' . urlencode($sql_query)
  845.                   . '&id_bookmark=1';
  846.             ?>
  847. <!-- Bookmark the query -->
  848.             <?php
  849.             echo "\n";
  850.             if ($disp_mode[3] == '1') {
  851.                 echo '    <i>' . $strOr . '</i>' . "\n";
  852.             }else echo '<br /><br />';
  853.             ?>
  854. <form action="sql.php" method="post" onsubmit="return emptyFormElements(this, 'fields[label]');">
  855. <table border="0" cellpadding="2" cellspacing="0">
  856. <tr><td class="tblHeaders" colspan="2"><?php
  857.      echo ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_bookmark.png" border="0" width="16" height="16" hspace="2" align="middle" alt="' . $strBookmarkThis . '" />' : '')
  858.         . $strBookmarkThis;
  859. ?></td></tr>
  860. <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td>
  861.     <?php echo $strBookmarkLabel; ?>:
  862.     <?php echo PMA_generate_common_hidden_inputs(); ?>
  863.     <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
  864.     <input type="hidden" name="fields[dbase]" value="<?php echo htmlspecialchars($db); ?>" />
  865.     <input type="hidden" name="fields[user]" value="<?php echo $cfg['Bookmark']['user']; ?>" />
  866.     <input type="hidden" name="fields[query]" value="<?php echo urlencode(isset($complete_query) ? $complete_query : $sql_query); ?>" />
  867.         </td><td>
  868.     <input type="text" name="fields[label]" value="" />
  869.         </td></tr>
  870. <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td align="right" valign="top">
  871.     <input type="checkbox" name="bkm_all_users" id="bkm_all_users" value="true" /></td>
  872.     <td><label for="bkm_all_users"><?php echo $strBookmarkAllUsers; ?></label></td>
  873. </tr>
  874. <tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="2" align="right">
  875.     <input type="submit" name="store_bkm" value="<?php echo $strBookmarkThis; ?>" />
  876.     </td></tr>
  877. </table></form>
  878.             <?php
  879.         } // end bookmark support
  880.  
  881.         // Do print the page if required
  882.         if (isset($printview) && $printview == '1') {
  883.             echo "\n";
  884.             ?>
  885. <script type="text/javascript" language="javascript1.2">
  886. <!--
  887. // Do print the page
  888. if (typeof(window.print) != 'undefined') {
  889.     window.print();
  890. }
  891. //-->
  892. </script>
  893.             <?php
  894.         } // end print case
  895.     } // end rows returned
  896.  
  897. } // end executes the query
  898. echo "\n\n";
  899.  
  900. /**
  901.  * Displays the footer
  902.  */
  903. require_once('./footer.inc.php');
  904. ?>
  905.